Request GTK_FILE_INFO_ALL from the file system model, so that arbitrary
authorFederico Mena Quintero <federico@ximian.com>
Mon, 9 Feb 2004 21:58:26 +0000 (21:58 +0000)
committerFederico Mena Quintero <federico@src.gnome.org>
Mon, 9 Feb 2004 21:58:26 +0000 (21:58 +0000)
2004-02-09  Federico Mena Quintero  <federico@ximian.com>

* gtk/gtkfilechooserdefault.c (set_list_model): Request
GTK_FILE_INFO_ALL from the file system model, so that arbitrary
filtering will work.  Perhaps we should have a way of aggregating
info types to the model as filters get installed.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkfilechooserdefault.c

index 4001085c9b83eabcbc701a9a84ec2cce5e8d5246..5c01bd20a67cc8c1b8fed03327c372c0bb2f0580 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-09  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_list_model): Request
+       GTK_FILE_INFO_ALL from the file system model, so that arbitrary
+       filtering will work.  Perhaps we should have a way of aggregating
+       info types to the model as filters get installed.
+
 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
index 4001085c9b83eabcbc701a9a84ec2cce5e8d5246..5c01bd20a67cc8c1b8fed03327c372c0bb2f0580 100644 (file)
@@ -1,3 +1,10 @@
+2004-02-09  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_list_model): Request
+       GTK_FILE_INFO_ALL from the file system model, so that arbitrary
+       filtering will work.  Perhaps we should have a way of aggregating
+       info types to the model as filters get installed.
+
 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
index 4001085c9b83eabcbc701a9a84ec2cce5e8d5246..5c01bd20a67cc8c1b8fed03327c372c0bb2f0580 100644 (file)
@@ -1,3 +1,10 @@
+2004-02-09  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_list_model): Request
+       GTK_FILE_INFO_ALL from the file system model, so that arbitrary
+       filtering will work.  Perhaps we should have a way of aggregating
+       info types to the model as filters get installed.
+
 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
index 4001085c9b83eabcbc701a9a84ec2cce5e8d5246..5c01bd20a67cc8c1b8fed03327c372c0bb2f0580 100644 (file)
@@ -1,3 +1,10 @@
+2004-02-09  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_list_model): Request
+       GTK_FILE_INFO_ALL from the file system model, so that arbitrary
+       filtering will work.  Perhaps we should have a way of aggregating
+       info types to the model as filters get installed.
+
 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
index 4001085c9b83eabcbc701a9a84ec2cce5e8d5246..5c01bd20a67cc8c1b8fed03327c372c0bb2f0580 100644 (file)
@@ -1,3 +1,10 @@
+2004-02-09  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_list_model): Request
+       GTK_FILE_INFO_ALL from the file system model, so that arbitrary
+       filtering will work.  Perhaps we should have a way of aggregating
+       info types to the model as filters get installed.
+
 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
index 487e15b35b62d82645de273e30a37d8255141433..7d742f6d49be7aa6ba22700fb8c98e4cd817fb7d 100644 (file)
@@ -2027,13 +2027,7 @@ set_list_model (GtkFileChooserDefault *impl)
 
   impl->list_model = _gtk_file_system_model_new (impl->file_system,
                                                 impl->current_folder, 0,
-#if 0
-                                                GTK_FILE_INFO_ICON |
-#endif
-                                                GTK_FILE_INFO_DISPLAY_NAME |
-                                                GTK_FILE_INFO_IS_FOLDER |
-                                                GTK_FILE_INFO_SIZE |
-                                                GTK_FILE_INFO_MODIFICATION_TIME);
+                                                GTK_FILE_INFO_ALL);
   _gtk_file_system_model_set_show_hidden (impl->list_model, impl->show_hidden);
   install_list_model_filter (impl);